home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1993 July / InfoMagic USENET CD-ROM July 1993.ISO / sources / unix / volume20 / keybind.pch < prev    next >
Encoding:
Internet Message Format  |  1989-10-29  |  1.7 KB

  1. Subject:  v20i083:  Rebind the console keyboard in Xenix or System Vr3.2.1+
  2. Newsgroups: comp.sources.unix
  3. Sender: sources
  4. Approved: rsalz@uunet.UU.NET
  5.  
  6. Submitted-by: Eric S. Raymond <eric@snark.uu.net>
  7. Posting-number: Volume 20, Issue 83
  8. Archive-name: keybind.pch
  9.  
  10. A file was inadvertently left off the shar manifest in the Makefile.
  11.  
  12. Here it is.
  13.  
  14. Please also add `keybind.h' to the shar production in Makefile.
  15.  
  16. #! /bin/sh
  17. # This is a shell archive.  Remove anything before this line, then unpack
  18. # it by saving it into a file and typing "sh file".  To overwrite existing
  19. # files, type "sh file -c".  You can also feed this as standard input via
  20. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  21. # will see the following message at the end:
  22. #        "End of shell archive."
  23. # Contents:  keybind.h
  24. # Wrapped by rsalz@papaya.bbn.com on Mon Oct 30 11:18:21 1989
  25. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  26. if test -f 'keybind.h' -a "${1}" != "-c" ; then 
  27.   echo shar: Will not clobber existing file \"'keybind.h'\"
  28. else
  29. echo shar: Extracting \"'keybind.h'\" \(428 characters\)
  30. sed "s/^X//" >'keybind.h' <<'END_OF_FILE'
  31. X/* keybind.h -- this structure used for a precompiled keymap definition */
  32. X
  33. X#define KBDHDMAGIC    0x01020102    /* all bytes must be non-printable chars */
  34. X
  35. Xtypedef struct
  36. X{
  37. X    int            magic;        /* should be KBDHDMAGIC */
  38. X    keymap_t        keymap;        /* keyboard map to load */
  39. X    strmap_t        strmap;        /* string table to load */
  40. X}
  41. Xkbd_t;
  42. X
  43. Xextern kbd_t kbd;
  44. X
  45. Xextern void dump_string();    /* from the lexical analyzer */
  46. X
  47. X/* keybind.h ends here */
  48. END_OF_FILE
  49. if test 428 -ne `wc -c <'keybind.h'`; then
  50.     echo shar: \"'keybind.h'\" unpacked with wrong size!
  51. fi
  52. # end of 'keybind.h'
  53. fi
  54. echo shar: End of shell archive.
  55. exit 0
  56.